home *** CD-ROM | disk | FTP | other *** search
/ TestDrive Windows 1993 Fall / TestDrive Windows 1993 Fall.iso / dbase / dtl / ad_fcopy.cod < prev    next >
Encoding:
Text File  |  1993-03-09  |  412 b   |  18 lines

  1. //
  2. // Module Name: AD_FCOPY.COD - Menu_Act = 18
  3. // Selectors  : File_from, File_To
  4. // Description: to issue the dBASE COPY FILE command
  5. // Syntax     : COPY FILE <expFN> TO <expFN>
  6. //
  7. lc_say='Copying file {File_from} to {File_To}'
  8. DO info_box WITH lc_say
  9. SET TALK ON
  10. //
  11. COPY FILE \
  12. {if File_from then}{File_from} TO {endif}\
  13. {if File_To then File_To}{endif}\
  14.  
  15. SET TALK OFF
  16. //
  17. // EOP AD_COPY.COD
  18.